home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 6_2.lha / 6_2 / 6_2b.c < prev    next >
Text File  |  1993-08-08  |  336b  |  9 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. tring x = "0123456789"; // creates string "0123456789"
  6. tring x25 = x(2, 4);     // creates string "2345"
  7. tring x69 = x(6);     // creates string "6789"
  8. tring x57 = x(-5, 3);     // creates string "567"
  9.